home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programmer's Power Pack
/
Delphi Volume 1.iso
/
e_to_l
/
fbuilder
/
delphi
/
demos
/
maindemo.dpr
< prev
next >
Wrap
Text File
|
1996-09-15
|
1KB
|
39 lines
{* *}
{* FormulaBuilder 1.0 *}
{* YGB Software, Inc. *}
{* Copyright (c) 1995 Clayton Collie *}
{* All Rights Reserved *}
{* *}
{* MAINDEMO.DPR *}
{* *}
{* This project exercises all the major *}
{* features of FormulaBuilder *}
{* *}
{* NOTE - This demo requires that the *}
{* machine running it has the *}
{* \DELPHI\DEMOS\DATA subdirectory, and *}
{* a copy of ChartFX 2.0 must be installed *}
{* in the Component Palette. Both *}
{* requirements are fulfilled by the *}
{* standard Delphi installation *}
{* *}
program Maindemo;
{$M 40000,8192}
uses
Forms,
MainForm in 'MAINFORM.PAS' {MainDemoFm},
Funcdlg in 'FUNCDLG.PAS' {FunctionDlg},
Dbexprfm in 'DBEXPRFM.PAS' {DBExprBuilder},
Fbhelpfm in 'FBHELPFM.PAS' {HelpDialog},
Demabout in 'DEMABOUT.PAS' {AboutBox},
Rttifm in 'RTTIFM.PAS' {RTTIDemoForm},
extfunc in 'EXTFUNC.PAS';
{$R *.RES}
begin
Application.CreateForm(TMainDemoFm, MainDemoFm);
Application.Run;
end.